home *** CD-ROM | disk | FTP | other *** search
/ The Big Day - Work Smarter - Learn How / The Big Day - Work Smarter - Learn How (Microsoft).BIN / 60 minute intranet kit / office.js < prev    next >
Text File  |  2000-07-12  |  1KB  |  35 lines

  1. var ToolBar_Supported = ToolBar_Supported ;
  2. if (ToolBar_Supported != null && ToolBar_Supported == true)
  3. {
  4.     //To Turn on/off Frame support, set Frame_Supported = true/false.
  5.     Frame_Supported = false;
  6.  
  7.     // Customize default ICP menu color - bgColor, fontColor, mouseoverColor
  8.     setDefaultICPMenuColor("#000000", "#FFFFFF", "#FFCC00");
  9.  
  10.     // Customize toolbar background color
  11.     setToolbarBGColor("#FFFFFF");
  12.  
  13.     // display ICP Banner
  14.     setICPBanner("/office/images/office_logo.gif","/office/","Microsoft(R) Office") ;
  15.     
  16.         //***** Add ICP menus *****
  17.     //Home
  18.     addICPMenu("HomeMenu","Office Home","","/office/");
  19.  
  20.     //Products
  21.     addICPMenu("ProductsMenu","Programs","","/office/products.htm");    
  22.     
  23.     //FAQ
  24.     addICPMenu("FAQMenu","FAQ","","/office/faq.htm");
  25.     
  26.     //International
  27.     addICPMenu("IndexMenu","International","","/office/worldwide.htm");    
  28.  
  29.     //Site Index
  30.     addICPMenu("SiteIndexMenu","Site Index","","/office/index.htm");    
  31.    
  32.     //Contact Us
  33.     addICPMenu("ContactMenu","Contact Us","","/office/contactus.htm");    
  34. }
  35.